home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacApp Release 10 / MacApp Release 10 - HD Ready / Libraries / MacApp.h next >
Encoding:
Text File  |  1996-04-03  |  707 b   |  51 lines  |  [TEXT/MPS ]

  1. // MacApp.h
  2. // Copyright © 1984-96 by Apple Computer, Inc. All rights reserved.
  3. // Core MacApp header files.
  4.  
  5. #ifndef __MACAPP__
  6. #define __MACAPP__
  7.  
  8. // Conditional Macros (include before any other headers)
  9.  
  10. #ifndef __MACONDITIONALMACROS__
  11. #include "MAConditionalMacros.h"
  12. #endif
  13.  
  14. // MacApp Core
  15.  
  16. #ifndef __MACORE__
  17. #include "MACore.h"
  18. #endif
  19.  
  20. // MacApp Framework
  21.  
  22. #ifndef __MAFRAMEWORK__
  23. #include "MAFramework.h"
  24. #endif
  25.  
  26. // MacApp Documents
  27.  
  28. #ifndef __MADOCS__
  29. #include "MADocs.h"
  30. #endif
  31.  
  32. // MacApp Views
  33.  
  34. #ifndef __MAVIEWS__
  35. #include "MAViews.h"
  36. #endif
  37.  
  38. // MacApp Application
  39.  
  40. #ifndef __MAAPP__
  41. #include "MAApp.h"
  42. #endif
  43.  
  44. // MacApp Mail
  45.  
  46. #ifndef __MAMAIL__
  47. #include "MAMail.h"
  48. #endif
  49.  
  50. #endif // __MACAPP__
  51.